home *** CD-ROM | disk | FTP | other *** search
- rem $linesize:132
- rem $title:'(c) Copyright 1987, Roy Barrow.'
- rem $subtitle:'COMMON definitions for use with AELIB.'
- '
- ' Refer to page -188- of the Microsoft QuickBASIC 2.00 Compiler Guide.
- '
- ' This revision: 10-January-1987
- ' (c) Copyright 1986,1987 Roy Barrow
- '
-
- OPTION BASE 0 ' For no underflow
-
-
- DIM idx.nam$(10%),xk$(10%,6%),xh%(10%,4%) ' Index variables
-
- COMMON /AE.INDEX/ idx.nam$(),xk$(),xh%() ' Index variables
- COMMON /AE.ERR/ aesb.fatal%,aesb.warning% ' Sub Routine Errors
-
- '
- ' *NOTE* All of the above variables should in NO WAY be redefined or
- ' tampered with. By doing so, the performance of AELIB routines
- ' will be altered unexpectedly. Many of the variables will
- ' contain garbage until initialised. Most of these variables
- ' will be initialised by subroutines.
-